home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
comm
/
fido
/
fz104.lha
/
rexx
/
KillTicks.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1991-11-10
|
291b
|
20 lines
/*
*
* Deletes all messages coming from TICK
*
* Installation:
* - Fzi --> External
* - Enter "Sysop" as one of the special names and
* use the command "rx KillTicks %m"
*
*/
parse arg MsgBuffer
From = import(x2c(MsgBuffer))
if left(From,4) = "TICK" then exit 0
exit 5